home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / fish / 001-100 / 001-025 / 002 / dbug / llib-ldbug < prev    next >
Text File  |  1995-03-17  |  2KB  |  89 lines

  1. /************************************************************************
  2.  *                                    *
  3.  *            Copyright (c) 1984, Fred Fish            *
  4.  *                All Rights Reserved                *
  5.  *                                    *
  6.  *    This software and/or documentation is released into the        *
  7.  *    public domain for personal, non-commercial use only.        *
  8.  *    Limited rights to use, modify, and redistribute are hereby    *
  9.  *    granted for non-commercial purposes, provided that all        *
  10.  *    copyright notices remain intact and all changes are clearly    *
  11.  *    documented.  The author makes no warranty of any kind with    *
  12.  *    respect to this product and explicitly disclaims any implied    *
  13.  *    warranties of merchantability or fitness for any particular    *
  14.  *    purpose.                            *
  15.  *                                    *
  16.  ************************************************************************
  17.  */
  18.  
  19.  
  20. /*
  21.  *  FILE
  22.  *
  23.  *    llib-ldbug    lint library source for debugging package
  24.  *
  25.  *  SCCS ID
  26.  *
  27.  *    @(#)llib-ldbug    1.4 12/25/85
  28.  *
  29.  *  DESCRIPTION
  30.  *
  31.  *    Function definitions for use in building lint library.
  32.  *    Note that these must stay in syncronization with actual
  33.  *    declarations in "dbug.c".
  34.  *
  35.  */
  36.  
  37.  
  38. /*LINTLIBRARY*/
  39.  
  40. #include <stdio.h>
  41. #define VOID void
  42. #define FALSE 0
  43.  
  44. int _db_on_ = FALSE;
  45. FILE *_db_fp_ = stderr;
  46. char *_db_process_ = "dbug";
  47.  
  48. VOID _db_push_ (control)
  49. char *control;
  50. {
  51. }
  52.  
  53. VOID _db_pop_ ()
  54. {
  55. }
  56.  
  57. VOID _db_enter_ (_func_, _file_, _line_, _sfunc_, _sfile_, _slevel_)
  58. char *_func_;
  59. char *_file_;
  60. int _line_;
  61. char **_sfunc_;
  62. char **_sfile_;
  63. int *_slevel_;
  64. {
  65. }
  66.  
  67. VOID _db_return_ (_line_, _sfunc_, _sfile_, _slevel_)
  68. int _line_;
  69. char **_sfunc_;
  70. char **_sfile_;
  71. int *_slevel_;
  72. {
  73. }
  74.  
  75. /*VARARGS3*/
  76. VOID _db_printf_ (_line_, keyword, format, 
  77.     a0, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11)
  78. int _line_;
  79. char *keyword,  *format;
  80. int a0, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11;
  81. {
  82. }
  83.  
  84. int _db_keyword_ (keyword)
  85. char *keyword;
  86. {
  87.     return (0);
  88. }
  89.